home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / rptnames.sql < prev    next >
Text File  |  2000-05-12  |  902b  |  23 lines

  1. /* RCSVER $Id: rptnames.sql,v 1.2 2000-05-09 12:05:46-05 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        rptnames.sql
  6. * Date:        02/24/2000
  7. * memo:        Randy Wood
  8. * Description:    Create the rptnames table. 
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE rptnames
  12. (
  13.     report_indx    NUMBER(38),        /* Number unique to this report */
  14.     report_name    VARCHAR2(30),    /* Name/title of this report */
  15.     short_name VARCHAR2(10),    /* Abbreviated name */
  16.     is_customizable    NUMBER(1),    /* If =1, user headings are used; */
  17.                         /* else =0 */
  18.     max_columns    NUMBER(38),        /* Maximum number of columns used by */
  19.                         /* this report */
  20.     CONSTRAINT unq_rptnames UNIQUE(short_name),
  21.     CONSTRAINT pk_rptnames PRIMARY KEY (report_indx)
  22. );
  23.